home *** CD-ROM | disk | FTP | other *** search
- #ifndef __VIEWHIER__
- #define __VIEWHIER__
-
- #ifndef __TYPES__
- #include <Types.h>
- #endif
-
-
-
- OSErr VHInitDocument(FileRecHndl frHndl);
- /*
- ** ¶ Given document handle, present style dialog for document.
- **
- ** This needs to be called by the application to create the
- ** View Hierarchy window. */
-
- long VHFileTypeSize(void);
- /*
- ** ¶ Support function for View Hierarchy window/document.
- */
-
- void VHRootInfo(TreeObjHndl root, char *cptr);
- /*
- ** ¶ Support function for View Hierarchy window/document.
- */
-
- void VHFileRecInfo(TreeObjHndl root, char *cptr);
- /*
- ** ¶ Support function for View Hierarchy window/document.
- **
- ** These functions are in the framework to support the View Hierarchy debugging window.
- ** The sample application AppWannabe has these calls in it. They can be conditionally
- ** removed by setting the compile variable VH_VERSION to 0. You should never have to
- ** call them directly, so therefore I didn’t bother documenting them. */
-
-
-
- #endif
-